home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Outlook Express 10.xpl < prev    next >
Text File  |  2002-10-29  |  3KB  |  91 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="3"
  4. "UIPATH"="Internet\Outlook Express\System"
  5. "NAME"="Advanced Options"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="3.01"
  8. "TEXT 1"="Enable creation of new accounts (email, news etc.)"
  9. "TEXT 2"="Enable HTTP mail accounts support"
  10. "TEXT 3"="Enable EXE attachments"
  11. "DESCRIPTION 1"="Option #1: When disabled, the "Accounts" option is removed from the Tools menu, so that no new accounts can be created. Enabling this allows, access to the "Accounts" dialog."
  12. "DESCRIPTION 2"="Option #2: When disabled, you will be unable to use email accounts which use the HTTP protocol. This includes Hotmail accounts."
  13. "DESCRIPTION 3"="Option #3: When disabled, you will be unable to save or start EXE attachments. It's highly recommended to set this to disabled, since most EXE attachments are viruses."
  14. "AUTHOR"="Xteq Systems"
  15. "CONTACTURL"="http://www.xteq.com/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="HTTP Mail option added by Neil R. Turner [totalxs@hotmail.com] after some inspiration from SΘbastien Maurice."
  18.  
  19. sValPath=""
  20. sP1="HKCU\Software\Microsoft\Outlook Express\"
  21. sP2="HKCU\Identities\Last User ID"
  22.  
  23. sV4="HKLM\SOFTWARE\Microsoft\Outlook Express\" 'DW (1 = enable restriction)
  24.  
  25. sV5="HKEY_CURRENT_USER\Software\Microsoft\Outlook Express\BlockExeAttachments"
  26.  
  27. Sub Plugin_Initialize 
  28.  'OK, let's have a look if we are running IE5...
  29.  s=RegReadValue(sP2)
  30.  if IsEmpty(s)=false then
  31.     'OK - we have a value - check if we can find OE
  32.     sValPath="HKCU\Identities\" & s & "\Software\Microsoft\Outlook Express\5.0\"
  33.     If RegPathExists(sValPath) then
  34.        'OE5 !
  35.        sValPath=sValPath '& sValue
  36.     else
  37.        sValPath=sP1 '& sValue
  38.     end if 
  39.  else
  40.     sValPath=sP1 '& sValue
  41.  end if
  42.  
  43.  
  44.  i=RegReadValue(sV4 & "No Modify Accts")
  45.  if i<>1 then
  46.     Call SetUIElement(1,True)
  47.  end if
  48.  
  49.  i=RegReadValue(sV4 & "HTTP Mail Enabled")
  50.  if i=1 then
  51.     Call SetUIElement(2,True)
  52.  end if
  53.  
  54.  i=RegReadValue(sV5)
  55.  if i=0 or IsEmpty(i) then
  56.     Call SetUIElement(3,True)
  57.  end if
  58.  
  59.  
  60. ' else
  61. '  Disable
  62. ' end if
  63. End Sub
  64.  
  65. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  66.  i=GetUIElement(1)
  67.  if i=true then
  68.     If RegValueExists(sV4 & "No Modify Accts") then Call RegDeleteValue(sV4 & "No Modify Accts")
  69.  else
  70.     Call RegWriteValue(sV4 & "No Modify Accts",1,2)
  71.  end if
  72.  
  73.  i=GetUIElement(2)
  74.  if i=true then
  75.     Call RegWriteValue(sV4 & "HTTP Mail Enabled",1,2)
  76.  else
  77.     If RegValueExists(sV4 & "HTTP Mail Enabled") then Call RegDeleteValue(sV4 & "HTTP Mail Enabled")
  78.  end if
  79.  
  80.  i=GetUIElement(3)
  81.  if i=true then
  82.     If RegValueExists(sV5) then Call RegDeleteValue(sV5)
  83.  else
  84.     Call RegWriteValue(sV5,1,2)
  85.  end if
  86.  
  87. End Sub
  88.  
  89. Sub Plugin_Terminate 
  90. End Sub
  91.